CopyTo Method (T[])

Wintellect PowerCollections

Collapse imageExpand ImageCollapseAll imageExpandAll imageDropDown imageDropDownHover imageCopy imageCopyHover image
[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Copies all the items in the list, in order, to array, starting at index 0.

Namespace: Wintellect.PowerCollections
Assembly:  PowerCollections (in PowerCollections.dll)

Syntax

C#
public virtual void CopyTo(
	T[] array
)
Visual Basic (Declaration)
Public Overridable Sub CopyTo ( _
	array As T() _
)
Visual C++
public:
virtual void CopyTo (
	array<T>^ array
)

Parameters

array
array<T>[]()
The array to copy to. This array must have a size that is greater than or equal to Count.

See Also